home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DJGPP
/
AETSK102.ZIP
/
contrib
/
tasks
/
inc
/
keybdtsk.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-10-11
|
874b
|
30 lines
/**********************************************************************
*
* NAME: keybdtsk.h
*
* DESCRIPTION: header file for task that reads kbd
*
* M O D I F I C A T I O N H I S T O R Y
*
* when who what
* -------------------------------------------------------------------
* 10/11/91 J. Alan Eldridge created
*
*********************************************************************/
//------------------------------------------------------------
// ********** CLASS KEYBDTASK **********
// a task that reads the keyboard into a pipe
//------------------------------------------------------------
class KeybdTask: public Task {
public:
KeybdTask(): Task("KeybdTask")
{ }
void TaskMain();
};
extern KeybdTask KbdTask;
extern BPipe KbdPipe;